home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960715-19961006 / 000374_news@columbia.edu _Mon Sep 23 00:11:38 1996.msg < prev    next >
Internet Message Format  |  1996-11-03  |  6KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id AAA18995 for <kermit.misc@watsun.cc.columbia.edu>; Mon, 23 Sep 1996 00:11:36 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id AAA12810 for kermit.misc@watsun; Mon, 23 Sep 1996 00:11:34 -0400 (EDT)
  4. Path: news.columbia.edu!psinntp!psinntp!portc01.blue.aol.com!news-res.gsl.net!news.gsl.net!news-peer.gsl.net!news.gsl.net!news.mathworks.com!newsfeed.internetmci.com!in2.uu.net!munnari.OZ.AU!news.mel.connect.com.au!news.ade.connect.com.au!news.adelaide.on.net!news.camtech.com.au!news.dircsa.org.au!news.dircsa.org.au!not-for-mail
  5. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  6. Newsgroups: comp.protocols.kermit.misc,comp.os.netware.connectivity,comp.protocols.ppp
  7. Subject: SLIP_PPP, second call for help
  8. Date: 23 Sep 1996 10:36:55 +0930
  9. Organization: DIRC - Disability Information & Resource Centre - Sth Australia
  10. Lines: 149
  11. Message-ID: <524nrf$5r8@gateway.dircsa.org.au>
  12. NNTP-Posting-Host: gateway.dircsa.org.au
  13. X-Newsreader: TIN [version 1.1 PL8]
  14. Xref: news.columbia.edu comp.protocols.kermit.misc:5939 comp.os.netware.connectivity:18621 comp.protocols.ppp:17347
  15.  
  16. This is a second call for help on this matter with some cross-posting:
  17.  
  18. I've been able to bring up a PPP using LSL and SLIP_PPP.COM by the following
  19. sequence:
  20.  
  21.     LSL
  22.     running MSK 3.15b8 to manually log on
  23.     SLIP_PPP E
  24.     SLIP_PPP S
  25.  
  26. but have been getting the error message "Cannot access IP packets" if I run
  27. MSK 3.15b8 and attempt to set port tcp/ip and connect.
  28.  
  29. LSL.COM identifies itself as:
  30.  
  31. NetWare Link Support Layer v2.14 (941011)
  32.  
  33. and SLIP_PPP.COM ? shows:
  34.  
  35. Novell Asynchronous SLIP_PPP Driver Dual-Mode (R42-8a, 941103)
  36. Copyright (c) 1992 Novell, Inc.  All Rights Reserved.
  37.  
  38. Available command line options:
  39.    SLIP_PPP    -Installs the MLID
  40.    SLIP_PPP D  -Selects DIX [Thick] Connector
  41.    SLIP_PPP U  -Removes resident MLID from memory
  42.    SLIP_PPP E  -Uses the serial PORT exclusively
  43.    SLIP_PPP ?  -Displays this help screen
  44.    SLIP_PPP [n] S  -Starts PPP option negotiation
  45.    SLIP_PPP [n] T  -Terminates PPP link connection
  46.    SLIP_PPP [n] C  -Displays PPP configurations
  47.    SLIP_PPP [n] R  -Reports PPP statistics
  48.    
  49.  
  50. net.cfg:
  51.  
  52.  
  53. Protocol KERMIT
  54.         Bind SLIP_PPP
  55.  
  56. LINK SUPPORT
  57.         BUFFERS 8 1500
  58.         MEMPOOL 4096 
  59.  
  60. LINK DRIVER SLIP_PPP
  61.         FRAME  PPP
  62.         ACCM   00000000
  63.         INT    3                # Set for your modem interrupt
  64.         PORT   2F8              # Set for your modem port
  65.         TCPIPComp VJ    
  66.         COMMOWNER NO            # NO is the default -- Window's only
  67. ;        DIRECT  YES
  68.         BAUD    38400
  69.         OPEN    ACTIVE
  70.         PCOMP   YES
  71.         ACCOMP  YES
  72.         Protocol PPP    0800    PPP     << alternative, with PPP
  73.  
  74. mscustom.ini:
  75.  
  76. GOTO GO ; FILE MSCUSTOM.INI
  77. ;
  78. :GO
  79. if < \v(version) 314 -
  80.   stop 1 -
  81.   This MSCUSTOM.INI file may be used only with MS-DOS Kermit 3.14 or later.
  82.  
  83. ;
  84. check term
  85. if fail forward XFER
  86. set terminal apc on        ; Uncomment to enable this feature.
  87.  
  88. :XFER
  89. COMMENT - Sample file transfer preferences.
  90. ;
  91. set block 3            ; 16-bit CRC for strong error checking.
  92. set window 4            ; 4 Window slots.
  93. set receive packet-length 2000    ; Packet length is governed by receiver.
  94. set control prefix all          ; Prefix all control characters.
  95.  
  96. ; Macros for transferring files in text and binary mode...
  97. ;
  98. define bsend binary, send \%1 \%2  ; SEND in binary mode
  99. define tsend text,   send \%1 \%2  ; SEND in text mode
  100. define bget  binary, get \%1  ; GET in binary mode
  101. define tget  text,   get \%1  ; GET in text mode
  102.  
  103. COMMENT - TCP/IP network configuration.
  104. ;
  105. check tcp
  106. if fail forward notcp
  107.  
  108. ;
  109. SET TCP/IP host 202.14.187.124
  110. SET TCP/IP PACKET ODI
  111. SET TCP/IP ADDRESS 202.14.187.129       ; My PC's numeric IP address
  112. SET TCP/IP SUBNETMASK 255.255.255.224   ; My physical network's subnet mask
  113. SET TCP/IP DOMAIN cswamp.dircsa.org.au  ; My PC's fully qualified domain name
  114. SET TCP/IP GATEWAY 202.14.187.122       ; My network gateway's IP address
  115. SET TCP/IP PRIMARY-NAMESERVER 202.14.187.122   ; Primary nameserver's address
  116. ; SET TCP/IP SECONDARY-NAMESERVER 123.123.123.3 ; fallback nameserver address
  117. SET TCP/IP BROADCAST 255.255.255.255 ; My network's broadcast address
  118.  
  119. ;
  120. define myhost -
  121.  telnet myhost 23 vt320,-
  122.  if success assign myhost telnet \v(session)
  123.  
  124. :NOTCP
  125. ;
  126. ; Add your own macro definitions, key settings, color selections, etc, here,
  127. ; for example:
  128.  
  129. set modem hayes        ; Change this to your modem type, see MODEMS\READ.ME.
  130. set printer nul    ; Uncomment this if you do NOT have a printer.
  131. ;set port fossil 2       ; Change if desired.  If COM3 or 4, read KERMIT.BWR.
  132. set port 2
  133. set speed 38400          ; Change if desired.
  134. set flow rts/cts        ; Change to RTS/CTS if modem is configured for this.
  135. ;set port tcp/ip
  136.  
  137. check term
  138. if fail end 0
  139. set term type vt320     ; Change this if desired.
  140. set term bytesize 8     ; Change to 8 if desired.
  141. set term color 0 34 47  ; Terminal screen fore- and background colors.
  142. set term under 0 33 47  ; Underscore simulation colors.
  143.  
  144. take \v(inidir)keyboard\vt300.ini ; Uncomment for full VT320 key mappings.
  145. echo back at MSCUSTOM.INI
  146. SET TERMINAL EXPANDED-MEMORY OFF
  147. set key \270 \8
  148. set key \2457 \Kupscn
  149. set key \2465 \Kdnscn
  150.  
  151. c
  152. ; (End of MSCUSTOM.INI)
  153.  
  154. Any suggestions?
  155.  
  156. -- 
  157. Arthur Marsh, telephone +61-8-8370-2365, fax +61-8-8223-5082 
  158.               arthur@dircsa.org.au
  159. .endofsig
  160.  
  161. -- 
  162. Arthur Marsh, telephone +61-8-8370-2365, fax +61-8-8223-5082 
  163.               arthur@dircsa.org.au
  164. .endofsig